home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DDJMAG
/
DDJ9203.ZIP
/
OOPASM.ZIP
/
OBJECTS.INC
< prev
next >
Wrap
Text File
|
1990-03-18
|
768b
|
28 lines
COMMENT %
============================================================================
Data structure used to hold pointers to an object's ancestors, messages, and
instance variables.
===========================================================================%
_Object STRUC
Objects DW Nil
Messages DW Nil
Instances DW Nil
_Object ENDS
COMMENT %
============================================================================
Data structure used to hold pointers to a message's Before, Primary, and
After methods.
===========================================================================%
_Message STRUC
Before DW Nil
Primary DW Nil
After DW Nil
_Message ENDS